home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / librw / RWTPtrMultiSet.z / RWTPtrMultiSet
Encoding:
Text File  |  2002-10-03  |  21.5 KB  |  595 lines

  1.  
  2.  
  3.  
  4. RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))                                      RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))
  5.  
  6.  
  7.  
  8. NNNNaaaammmmeeee
  9.      RWTPtrMultiSet<T,C> - Rogue Wave library class
  10.  
  11. SSSSyyyynnnnooooppppssssiiiissss
  12.               #include <rw/tpmset.h>
  13.  
  14.  
  15.  
  16.               RWTPtrMultiSet<T,C> s;
  17.  
  18. SSSSttttaaaannnnddddaaaarrrrdddd CCCC++++++++ LLLLiiiibbbbrrrraaaarrrryyyy DDDDeeeeppppeeeennnnddddeeeennnntttt!!!!
  19.      RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt requires the Standard C++ Library.
  20.  
  21.  
  22. DDDDeeeessssccccrrrriiiippppttttiiiioooonnnn
  23.      This class maintains a pointer-based collection of values, which are
  24.      ordered according to a comparison object of type CCCC.  Class TTTT is the type
  25.      pointed to by the items in the collection. CCCC must induce a total ordering
  26.      on elements of type TTTT via a public member
  27.  
  28.               bool operator()(const T& x, const T& y)
  29.  
  30.  
  31.  
  32.  
  33.  
  34.      which returns ttttrrrruuuueeee if xxxx should precede yyyy within the collection.  The
  35.      structure lllleeeessssssss<<<<TTTT>>>> from the C++-standard header file <<<<ffffuuuunnnnccccttttiiiioooonnnnaaaallll>>>> is an
  36.      example.  Note that items in the collection will be dereferenced before
  37.      being compared.  RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt<<<<TTTT,,,,CCCC>>>> may contain multiple items that
  38.      compare equal to each other.  (RRRRWWWWTTTTPPPPttttrrrrSSSSeeeetttt<<<<TTTT,,,,CCCC>>>> will not accept an item
  39.      that compares equal to an item already in the collection.)
  40.  
  41. PPPPeeeerrrrssssiiiisssstttteeeennnncccceeee
  42.      Isomorphic.
  43.  
  44. EEEExxxxaaaammmmpppplllleeeessss
  45.      In this example, a multi-set of RRRRWWWWCCCCSSSSttttrrrriiiinnnnggggs is exercised.
  46.  
  47.               //
  48.  
  49.  
  50.  
  51.               // tpmset.cpp
  52.           //
  53.           #include <rw/tpmset.h>
  54.           #include <rw/cstring.h>
  55.           #include <iostream.h>
  56.           #include <function.h>
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))                                      RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))
  71.  
  72.  
  73.  
  74.               main(){
  75.  
  76.  
  77.  
  78.                 RWTPtrMultiSet<RWCString, less<RWCString> > set;
  79.  
  80.  
  81.  
  82.                 set.insert(new RWCString("one"));
  83.  
  84.  
  85.  
  86.                 set.insert(new RWCString("two"));
  87.             set.insert(new RWCString("three"));
  88.             set.insert(new RWCString("one"));  // OK: duplicates allowd
  89.  
  90.  
  91.                 cout << set.entries() << endl;   // Prints "4"
  92.             set.clearAndDestroy();
  93.  
  94.  
  95.  
  96.                 cout << set.entries() << endl;   // Prints "0"
  97.  
  98.  
  99.  
  100.                 return 0;
  101.  
  102.  
  103.  
  104. RRRReeeellllaaaatttteeeedddd CCCCllllaaaasssssssseeeessss
  105.               }
  106.  
  107.  
  108.      Class RRRRWWWWTTTTPPPPttttrrrrSSSSeeeetttt<<<<TTTT,,,,CCCC>>>> offers the same interface to a pointer-based
  109.      collection that will not accept multiple items that compare equal to each
  110.      other.  RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiMMMMaaaapppp<<<<KKKK,,,,TTTT,,,,CCCC>>>> maintains is a pointer-based collection of
  111.      key-value pairs.  Class mmmmuuuullllttttiiiisssseeeetttt<<<<TTTT****,,,, rrrrwwww____ddddeeeerrrreeeeffff____ccccoooommmmppppaaaarrrreeee<<<<CCCC,,,,TTTT>>>>,,,,aaaallllllllooooccccaaaattttoooorrrr >>>> is
  112.      the C++-standard collection that serves as the underlying implementation
  113.      for RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt<<<<TTTT,,,,CCCC>>>>.
  114.  
  115. PPPPuuuubbbblllliiiicccc TTTTyyyyppppeeeeddddeeeeffffssss
  116.               typedef rw_deref_compare<C,T>                  container_comp;
  117.           typedef multiset<T*, container_comp,allocator> container_type;
  118.           typedef container_type::size_type              size_type;
  119.           typedef container_type::difference_type        difference_type;
  120.           typedef container_type::iterator               iterator;
  121.           typedef container_type::const_iterator         const_iterator;
  122.           typedef T*                                     value_type;
  123.           typedef T* const&                              reference;
  124.           typedef T* const&                              const_reference;
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))                                      RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))
  137.  
  138.  
  139.  
  140. PPPPuuuubbbblllliiiicccc CCCCoooonnnnssssttttrrrruuuuccccttttoooorrrrssss
  141.               RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt<<<<TTTT,,,,CCCC>>>>(const container_comp& = container_comp());
  142.  
  143.  
  144.      Constructs an empty set.
  145.  
  146.               RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt<<<<TTTT,,,,CCCC>>>>(const RWTPtrMultiSet<T,C>& rws);
  147.  
  148.  
  149.      Copy constructor.
  150.  
  151.               RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt<<<<TTTT,,,,CCCC>>>>(const container_type>& ms);
  152.  
  153.  
  154.      Constructs a multimap by copying all elements from mmmmssss.
  155.  
  156.               RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt<<<<TTTT,,,,CCCC>>>>(T* const* first,T* const* last,const container_comp& = container_comp());
  157.  
  158.  
  159.      Constructs a set by copying elements from the array of TTTT****s pointed to by
  160.      ffffiiiirrrrsssstttt, up to, but not including, the element pointed to by llllaaaasssstttt.
  161.  
  162. PPPPuuuubbbblllliiiicccc MMMMeeeemmmmbbbbeeeerrrr OOOOppppeeeerrrraaaattttoooorrrrssss
  163.               RWTPtrMultiSet<T,C>&
  164.           ooooppppeeeerrrraaaattttoooorrrr====(const container_type>& s);
  165.           RWTPtrMultiSet<T,C>&
  166.           ooooppppeeeerrrraaaattttoooorrrr====(const RWTPtrMultiSet<T,C>& s);
  167.  
  168.  
  169.      Clears all elements of self and replaces them by copying all elements of
  170.      ssss.
  171.  
  172.               bool
  173.           ooooppppeeeerrrraaaattttoooorrrr<<<<(const RWTPtrMultiSet<T,C>& s) const;
  174.  
  175.  
  176.      Returns ttttrrrruuuueeee if self compares lexicographically less than ssss, otherwise
  177.      returns ffffaaaallllsssseeee.  Items in each collection are dereferenced before being
  178.      compared.  Assumes that type TTTT has well-defined less-than semantics.
  179.  
  180.               bool
  181.           ooooppppeeeerrrraaaattttoooorrrr========(const RWTPtrMultiSet<T,C>& s) const;
  182.  
  183.  
  184.      Returns ttttrrrruuuueeee if self compares equal to ssss, otherwise returns ffffaaaallllsssseeee.  Two
  185.      collections are equal if both have the same number of entries, and
  186.      iterating through both collections produces, in turn, individual elements
  187.      that compare equal to each other.  Elements are dereferenced before being
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.                                                                         PPPPaaaaggggeeee 3333
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))                                      RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))
  203.  
  204.  
  205.  
  206.      compared.
  207.  
  208. PPPPuuuubbbblllliiiicccc MMMMeeeemmmmbbbbeeeerrrr FFFFuuuunnnnccccttttiiiioooonnnnssss
  209.               void
  210.           aaaappppppppllllyyyy(void (*fn)(const T*,void*), void* d) const;
  211.  
  212.  
  213.      Applies the user-defined function pointed to by ffffnnnn to every item in the
  214.      collection.  This function must have prototype:
  215.  
  216.                  void yourfun(const T* a, void* d);
  217.  
  218.  
  219.  
  220.  
  221.  
  222.      Client data may be passed through parameter dddd.
  223.  
  224.               iterator
  225.           bbbbeeeeggggiiiinnnn();
  226.           const_iterator
  227.           bbbbeeeeggggiiiinnnn() const;
  228.  
  229.  
  230.      Returns an iterator positioned at the first element of self.
  231.  
  232.               void
  233.           cccclllleeeeaaaarrrr();
  234.  
  235.  
  236.      Clears the collection by removing all items from self.
  237.  
  238.               void
  239.           cccclllleeeeaaaarrrrAAAAnnnnddddDDDDeeeessssttttrrrrooooyyyy();
  240.  
  241.  
  242.      Removes all items from the collection and uses ooooppppeeeerrrraaaattttoooorrrr ddddeeeelllleeeetttteeee to destroy
  243.      the objects pointed to by those items.  Do not use this method if
  244.      multiple pointers to the same object are stored.
  245.  
  246.               bool
  247.           ccccoooonnnnttttaaaaiiiinnnnssss(const T* a) const;
  248.  
  249.  
  250.      Returns ttttrrrruuuueeee if there exists an element tttt in self that compares equal to
  251.      ****aaaa, otherwise returns ffffaaaallllsssseeee.
  252.  
  253.               bool
  254.           ccccoooonnnnttttaaaaiiiinnnnssss(bool (*fn)(const T*,void*), void* d) const;
  255.  
  256.  
  257.      Returns ttttrrrruuuueeee if there exists an element tttt in self such that the
  258.  
  259.  
  260.  
  261.                                                                         PPPPaaaaggggeeee 4444
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268. RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))                                      RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))
  269.  
  270.  
  271.  
  272.      expression ((((((((****ffffnnnn))))((((tttt,,,,dddd)))))))) is ttttrrrruuuueeee, otherwise returns ffffaaaallllsssseeee.  ffffnnnn points to a
  273.      user-defined tester function which must have prototype:
  274.  
  275.                  bool yourTester(const T* a, void* d);
  276.  
  277.  
  278.  
  279.  
  280.  
  281.      Client data may be passed through parameter dddd.
  282.  
  283.               void
  284.           ddddiiiiffffffffeeeerrrreeeennnncccceeee(const RWTPtrMultiSet<T,C>& s);
  285.  
  286.  
  287.      Sets self to the set-theoretic difference given by ((((sssseeeellllffff ---- ssss)))).  Elements
  288.      from each set are dereferenced before being compared.
  289.  
  290.               iterator
  291.           eeeennnndddd();
  292.           const_iterator
  293.           eeeennnndddd() const;
  294.  
  295.  
  296.      Returns an iterator positioned "just past" the last element in self.
  297.  
  298.               size_type
  299.           eeeennnnttttrrrriiiieeeessss();
  300.  
  301.  
  302.      Returns the number of items in self.
  303.  
  304.               const T*
  305.           ffffiiiinnnndddd(const T* a) const;
  306.  
  307.  
  308.      If there exists an element tttt in self such that the expression ((((****tttt ======== ****aaaa))))
  309.      is ttttrrrruuuueeee, returns tttt.  Otherwise, returns rrrrwwwwnnnniiiillll.
  310.  
  311.               const T*
  312.           ffffiiiinnnndddd(bool (*fn)(T*,void*), void* d);
  313.           const T*
  314.           ffffiiiinnnndddd(bool (*fn)(const T*,void*), void* d) const;
  315.  
  316.  
  317.      If there exists an element tttt in self such that the expression
  318.      ((((((((****ffffnnnn))))((((tttt,,,,dddd)))))))) is ttttrrrruuuueeee, returns tttt.  Otherwise, returns rrrrwwwwnnnniiiillll.  ffffnnnn points to
  319.      a user-defined tester function which must have prototype:
  320.  
  321.                  bool yourTester(const T* a, void* d);
  322.  
  323.  
  324.  
  325.  
  326.  
  327.                                                                         PPPPaaaaggggeeee 5555
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334. RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))                                      RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))
  335.  
  336.  
  337.  
  338.  
  339.  
  340.      Client data may be passed through parameter dddd.
  341.  
  342.               bool
  343.           iiiinnnnsssseeeerrrrtttt(T* a);
  344.  
  345.  
  346.      Adds the item aaaa to the collection.  Returns ttttrrrruuuueeee.
  347.  
  348.               void
  349.           iiiinnnntttteeeerrrrsssseeeeccccttttiiiioooonnnn(const RWTPtrMultiSet<T,C>& s);
  350.  
  351.  
  352.      Sets self to the intersection of self and ssss.  Elements from each set are
  353.      dereferenced before being compared.
  354.  
  355.               bool
  356.           iiiissssEEEEmmmmppppttttyyyy() const;
  357.  
  358.  
  359.      Returns ttttrrrruuuueeee if there are no items in the collection, ffffaaaallllsssseeee otherwise.
  360.  
  361.               bool
  362.           iiiissssEEEEqqqquuuuiiiivvvvaaaalllleeeennnntttt(const RWTPtrMultiSet<T,C>& s) const;
  363.  
  364.  
  365.      Returns ttttrrrruuuueeee if there is set equivalence between self and ssss, and returns
  366.      ffffaaaallllsssseeee otherwise.
  367.  
  368.               bool
  369.           iiiissssPPPPrrrrooooppppeeeerrrrSSSSuuuubbbbsssseeeettttOOOOffff(const RWTPtrMultiSet<T,C>& s) const;
  370.  
  371.  
  372.      Returns ttttrrrruuuueeee if self is a proper subset of ssss, and returns ffffaaaallllsssseeee
  373.      otherwise.
  374.  
  375.               bool
  376.           iiiissssSSSSuuuubbbbsssseeeettttOOOOffff(const RWTPtrMultiSet<T,C>& s) const;
  377.  
  378.  
  379.      Returns ttttrrrruuuueeee if self is a subset of ssss or if self is set equivalent to
  380.      rrrrhhhhssss, ffffaaaallllsssseeee otherwise.
  381.  
  382.               size_type
  383.           ooooccccccccuuuurrrrrrrreeeennnncccceeeessssOOOOffff(const T* a) const;
  384.  
  385.  
  386.      Returns the number of elements tttt in self that compare equal to ****aaaa.
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.                                                                         PPPPaaaaggggeeee 6666
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400. RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))                                      RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))
  401.  
  402.  
  403.  
  404.               size_type
  405.           ooooccccccccuuuurrrrrrrreeeennnncccceeeessssOOOOffff(bool (*fn)(const T*,void*), void* d) const;
  406.  
  407.  
  408.      Returns the number of elements tttt in self such that the
  409.      expression((((((((****ffffnnnn))))((((tttt,,,,dddd)))))))) is ttttrrrruuuueeee.  ffffnnnn points to a user-defined tester
  410.      function which must have prototype:
  411.  
  412.                  bool yourTester(const T* a, void* d);
  413.  
  414.  
  415.  
  416.  
  417.  
  418.      Client data may be passed through parameter dddd.
  419.  
  420.               T*
  421.           rrrreeeemmmmoooovvvveeee(const T* a);
  422.  
  423.  
  424.      Removes and returns the first element tttt in self that compares equal to
  425.      ****aaaa.  Returns rrrrwwwwnnnniiiillll if there is no such element.
  426.  
  427.               T*
  428.           rrrreeeemmmmoooovvvveeee(bool (*fn)(const T*,void*), void* d);
  429.  
  430.  
  431.      Removes and returns the first element tttt in self such that the expression
  432.      ((((((((****ffffnnnn))))((((tttt,,,,dddd)))))))) is ttttrrrruuuueeee.  Returns rrrrwwwwnnnniiiillll if there is no such element.  ffffnnnn
  433.      points to a user-defined tester function which must have prototype:
  434.  
  435.                  bool yourTester(const T* a, void* d);
  436.  
  437.  
  438.  
  439.  
  440.  
  441.      Client data may be passed through parameter dddd.
  442.  
  443.               size_type
  444.           rrrreeeemmmmoooovvvveeeeAAAAllllllll(const T* a);
  445.  
  446.  
  447.      Removes all elements tttt in self that compare equal to ****aaaa.  Returns the
  448.      number of items removed.
  449.  
  450.               size_type
  451.           rrrreeeemmmmoooovvvveeeeAAAAllllllll(bool (*fn)(const T*,void*), void* d);
  452.  
  453.  
  454.      Removes all elements tttt in self such that the expression ((((((((****ffffnnnn))))((((tttt,,,,dddd))))))))is
  455.      ttttrrrruuuueeee.  Returns the number of items removed.  ffffnnnn points to a user-defined
  456.  
  457.  
  458.  
  459.                                                                         PPPPaaaaggggeeee 7777
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466. RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))                                      RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))
  467.  
  468.  
  469.  
  470.      tester function which must have prototype:
  471.  
  472.                  bool yourTester(const T* a, void* d);
  473.  
  474.  
  475.      Client data may be passed through parameter dddd.
  476.  
  477.               multiset<T*, container_comp,allocator>&
  478.           ssssttttdddd();
  479.           const multiset<T*, container_comp,allocator>&
  480.           ssssttttdddd() const;
  481.  
  482.  
  483.      Returns a reference to the underlying C++-standard collection that serves
  484.      as the implementation for self.
  485.  
  486.               void
  487.           ssssyyyymmmmmmmmeeeettttrrrriiiiccccDDDDiiiiffffffffeeeerrrreeeennnncccceeee(const RWTPtrMultiSet<T,C>& s);
  488.  
  489.  
  490.      Sets self to the symmetric difference of self and ssss.  Elements from each
  491.      set are dereferenced before being compared.
  492.  
  493.               void
  494.           UUUUnnnniiiioooonnnn(const RWTPtrMultiSet<T,C>& s);
  495.  
  496.  
  497.      Sets self to the union of self and ssss.  Elements from each set are
  498.      dereferenced before being compared. Note the uppercase "U" in UUUUnnnniiiioooonnnn to
  499.      avoid conflict with the C++ reserved word.
  500.  
  501. RRRReeeellllaaaatttteeeedddd GGGGlllloooobbbbaaaallll OOOOppppeeeerrrraaaattttoooorrrrssss
  502.               RWvostream&
  503.           ooooppppeeeerrrraaaattttoooorrrr<<<<<<<<(RWvostream& strm, const RWTPtrMultiSet<T,C>& coll);
  504.           RWFile&
  505.           ooooppppeeeerrrraaaattttoooorrrr<<<<<<<<(RWFile& strm, const RWTPtrMultiSet<T,C>& coll);
  506.  
  507.  
  508.      Saves the collection ccccoooollllllll onto the output stream ssssttttrrrrmmmm, or a reference to
  509.      it if it has already been saved.
  510.  
  511.               RWvistream&
  512.           ooooppppeeeerrrraaaattttoooorrrr>>>>>>>>(RWvistream& strm, RWTPtrMultiSet<T,C>& coll);
  513.           RWFile&
  514.           ooooppppeeeerrrraaaattttoooorrrr>>>>>>>>(RWFile& strm, RWTPtrMultiSet<T,C>& coll);
  515.  
  516.  
  517.      Restores the contents of the collection ccccoooollllllll from the input stream ssssttttrrrrmmmm.
  518.  
  519.               RWvistream&
  520.           ooooppppeeeerrrraaaattttoooorrrr>>>>>>>>(RWvistream& strm, RWTPtrMultiSet<T,C>*& p);
  521.           RWFile&
  522.  
  523.  
  524.  
  525.                                                                         PPPPaaaaggggeeee 8888
  526.  
  527.  
  528.  
  529.  
  530.  
  531.  
  532. RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))                                      RRRRWWWWTTTTPPPPttttrrrrMMMMuuuullllttttiiiiSSSSeeeetttt((((3333CCCC++++++++))))
  533.  
  534.  
  535.  
  536.           ooooppppeeeerrrraaaattttoooorrrr>>>>>>>>(RWFile& strm, RWTPtrMultiSet<T,C>*& p);
  537.  
  538.  
  539.      Looks at the next object on the input stream ssssttttrrrrmmmm and either creates a
  540.      new collection off the heap and sets pppp to point to it, or sets pppp to point
  541.      to a previously read instance.  If a collection is created off the heap,
  542.      then you are responsible for deleting it.
  543.  
  544.  
  545.  
  546.  
  547.  
  548.  
  549.  
  550.  
  551.  
  552.  
  553.  
  554.  
  555.  
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562.  
  563.  
  564.  
  565.  
  566.  
  567.  
  568.  
  569.  
  570.  
  571.  
  572.  
  573.  
  574.  
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588.  
  589.  
  590.  
  591.                                                                         PPPPaaaaggggeeee 9999
  592.  
  593.  
  594.  
  595.